home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / fastl150.zip / FASTLOAD.DOC next >
Text File  |  1993-08-17  |  17KB  |  374 lines

  1.  
  2.                       Fast Load - Version 1.50
  3.     Copyright 1993 Omega Point, Inc. All rights reserved
  4.            & Copyright 1991-2 Microsystems Software, Inc. 
  5.  
  6.  
  7. ───────────────────────────────────────────────────────────────────────────
  8.             WHAT IS FAST LOAD ?
  9. ───────────────────────────────────────────────────────────────────────────
  10.   
  11.  
  12.  Fast Load (FL.EXE) is a unique productivity tool which makes maximum
  13.  use of available EMS or XMS on your computer to provide instant
  14.  Execution Loading of .EXE, .COM, and .OVL type files.  Additionally,
  15.  it can cache DAT, BAT and other data files. Since Fast Load provides
  16.  user control over which files are kept in the EMS/XMS memory it 
  17.  enhances the disk i/o even if you use disk cache programs.
  18.  
  19.  Simply put FL.EXE in your autoexec.bat file and a list of the executable,
  20.  data or bat files in an FL.DAT file (same subdirectory as FL.EXE) or 
  21.  on the command line.  Any time that DOS (or any of your applications) 
  22.  attempts to load these programs, they will be loaded from EMS or XMS 
  23.  instead. The UNREGISTERED version is limited to a maximum of 7 files.
  24.  The REGISTERED version ($39) is limited only by your available EMS/XMS.
  25.  
  26.  
  27.  
  28.                  Advantages of Fast Load vs. RAM Disk
  29. ───────────────────────────────────────────────────────────────────────────
  30.  
  31. 1. The file sizes on the RAM disk are rounded up to cluster size
  32.    (typically 1-2K), thus wasting on average of 1/2 cluster per file or
  33.    more for lots of small files.
  34.    
  35.    Fast Load packs files tightly one after the other wasting no XMS/EMS
  36.    memory. It also preprocesses the EXE header and relocation table which
  37.    reduces the size even more (you'll find space taken is often smaller
  38.    than the EXE file size - use /C (calculate) option to display this
  39.    info).
  40.  
  41. 2. In order to vary the number of programs stored on RAM disks, you
  42.    need to edit config.sys and change obscure command line arguments for
  43.    the device driver.  That requires calculation of exe file sizes that
  44.    one needs.  Otherwise you have to allocate lots of spare space, which
  45.    will often leave lots of unused RAM.
  46.  
  47.    With Fast Load, you just place program names into the FL.DAT file, all
  48.    size calculation is done by Fast Load. Adding a few more programs on
  49.    one time basis can be done on the FL command line via the /P switch,
  50.    without even editing FL.DAT.
  51.     
  52. 3. Many applications use the directory (drive) they were executed from
  53.    to find associated data files. This requires copying of such files to
  54.    RAM disk and back before your machine gets turned off, which can be
  55.    unsafe in case of a system crash.
  56.      
  57.    Fast Load simulates execution from the original drive and path, thus
  58.    the applications can properly locate their data files.
  59.  
  60. 4. With RAM disk the exec processing is done by DOS which searches RAM
  61.    drive directories, FAT, clusters, calls device driver, processes EXE
  62.    information,...etc.
  63.  
  64.    Fast Load keeps all files in contiguous memory blocks and does no
  65.    directory searches (it uses fast hash-lookup). By eliminating two
  66.    layers of processing (DOS and RAM driver) as well as by preprocessing
  67.    EXE relocation info (at Fast Load load time) the execution is much
  68.    quicker than from RAM disk.
  69.  
  70. 5. The Resident Size of Fast Load is 5K which is half or less than a
  71.    typical RAM Disk driver would take.
  72.  
  73. 6. Fast Load can be unloaded at any time to release XMS/EMS and the 5K
  74.    used by the TSR. RAM drivers require reboot to release memory.
  75.  
  76.  
  77.  
  78.         Advantages of Fast Load vs DISK Cache
  79. ───────────────────────────────────────────────────────────────────────────
  80.  
  81. 1. Disk cache uses sector granularity (1/2K per sector). This wastes
  82.    XMS/EMS memory similarly to cluster granularity with RAM disks.
  83.  
  84. 2. Disk cache has to flush its RAM buffers as the new disk i/o occurs,
  85.    thus a large file copy will remove all previous content of the cache.
  86.    With Fast Load you decide which files are kept in the RAM and these 
  87.    files are read from the disk only once, at load time. With regular
  88.    disk cache, the same files may be reloaded from the disk many times
  89.    since the cache driver cannot predict as well as you can which files
  90.    you need more often.
  91.  
  92. 3. Disk CACHE drivers add another layer of processing (cache
  93.    management) compared to RAM disks, thus they are three layers of
  94.    processing less efficient than Fast Load.
  95.  
  96. 4. Disk CACHE drivers are much bigger than even RAM Disk drivers due to
  97.    complexity and large tables of fast cache management, thus much more
  98.    resident memory (or UMB's) is taken by cache drivers than by Fast Load.
  99.  
  100. 5. The cache drivers are often loaded as device drivers, thus they
  101.    can't be unloaded (to release cache memory) without rebooting.
  102.  
  103. 6. Disk CACHE drivers access hard disk at low level to fill/flush
  104.    cache.  This can easily destroy ALL hard disk data in case of any
  105.    errors, bugs, conflicts, lockups in the cache drivers, and other
  106.    applications.
  107.  
  108.    Fast Load is perfectly safe for the hard disk since it accesses disk
  109.    only at load time, using high level DOS and read only access of the
  110.    executable files.  Thus it can't do any harm in any system state.
  111.  
  112.  
  113.  
  114. ───────────────────────────────────────────────────────────────────────────
  115.          REGISTRATION, PRICING & OPERATION
  116. ───────────────────────────────────────────────────────────────────────────
  117.  
  118.  
  119.  Files in the Fast Load package
  120. ───────────────────────────────────────────────────────────────────────────
  121.       
  122.     FL.EXE       - Fast Load Executable Program
  123.     FL.DAT       - Example file containing Fast-Loadable files
  124.     REGFL.EXE    - Program to Register and Unlock FL.EXE for more than
  125.                    7 executable files. CALL Omega Point at (508) 877-1819
  126.            $39 MasterCARD, VISA, AMEX accepted. After registering,
  127.                    you may use this for re-register of any Updates etc.
  128.     MTRAP.COM    - Speeds up Mouse Resetting (see below)
  129.     LWATCH.EXE   - LOGs EXEC calls to a file LWATCH.DAT (in current dir) to
  130.                    allow analysis of Most Frequently EXECuted programs.
  131.                    Normally loaded only for testing unless you are the Pay-
  132.                    Per-View type of person.
  133.     SETFL.COM    - Use in Batch files to turn on/off Fastload as follows:
  134.                    (SETFL +  or  SETFL -)
  135.     FL.VER       - FL.EXE Revision History File
  136.     MM.COM       - Display Resident Memory Map or MM X for EMS/XMS usage
  137.     FASTLOAD.DOC - This file
  138.  
  139.  
  140.  
  141.  REGISTRATION
  142. ───────────────────────────────────────────────────────────────────────────
  143.  
  144.  Fast Load (FL.EXE) is NOT a public domain program.  It is copyright
  145.  (c) 1993 by Omega Point, Inc. All rights reserved.
  146.  
  147.  This software and accompanying documentation are protected by 
  148.  United States and international copyright and/or patent law.
  149.  
  150.  You are granted a limited license to use this software for evaluation
  151.  purposes for a period not to exceed thirty (30) days.  If you intend to
  152.  continue using this software after this period, please register your
  153.  copy by calling Omega Point and obtaining an Unlock Code.
  154.  
  155.  After you have used FL for this reasonable evaluation period, you should
  156.  either discontinue use of the program or purchase a licensed copy from
  157.  Omega Point.  Your support is important and greatly appreciated. With it,
  158.  shareware authors are encouraged to design and distribute new products.
  159.  Without it, a great deal of high quality, low cost software will cease to
  160.  be available.
  161.  
  162.  
  163.  SUPPORT & REGISTRATION may be obtained from:
  164. ───────────────────────────────────────────────────────────────────────────
  165.  
  166.     Omega Point, Inc.
  167.     25 Birch Road
  168.     Framingham, MA 01701
  169.  
  170.         TEL (508) 877-1819  Sales, Registration
  171.             (508) 877-4853  Technical support
  172.         FAX (508) 877-0915
  173.         BBS (508) 875-8009  1200/2400 N-8-1
  174.         BBS (508) 626-2481  9600 HST-Dual
  175.  
  176.  Please leave any support BBS questions to username: RATKO TOMIC
  177.  
  178.  
  179.  PRICING (per order basis)
  180. ───────────────────────────────────────────────────────────────────────────
  181.  
  182.